home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-131.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  98 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12309);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CVE-2002-0640");
  13.  
  14.  name["english"] = "RHSA-2002-131: openssh";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated openssh packages are now available for Red Hat Linux Advanced
  21.   Server. These updates fix an input validation error in OpenSSH.
  22.  
  23.   OpenSSH provides an implementation of the SSH (secure shell) protocol used
  24.   for logging into and executing commands on remote machines.
  25.  
  26.   Versions of the OpenSSH server between 2.3.1 and 3.3 contain an input
  27.   validation error that can result in an integer overflow and privilege
  28.   escalation.
  29.  
  30.   At this time, Red Hat does not believe that the default installation of
  31.   OpenSSH on Red Hat Linux is vulnerable to this issue; however a user would
  32.   be vulnerable if the configuration option "PAMAuthenticationViaKbdInt" is
  33.   enabled in the sshd configuration file (it is not enabled by default).
  34.  
  35.   We have applied the security fix provided by the OpenSSH team to these
  36.   errata packages which are based on OpenSSH 3.1p1. This should minimize the
  37.   impact of upgrading to our errata packages.
  38.  
  39.   All users of OpenSSH should update to these errata packages which are not
  40.   vulnerable to this issue.
  41.  
  42.  
  43.  
  44.  
  45. Solution : http://rhn.redhat.com/errata/RHSA-2002-131.html
  46. Risk factor : High';
  47.  
  48.  script_description(english:desc["english"]);
  49.  
  50.  summary["english"] = "Check for the version of the openssh packages";
  51.  script_summary(english:summary["english"]);
  52.  
  53.  script_category(ACT_GATHER_INFO);
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  56.  family["english"] = "Red Hat Local Security Checks";
  57.  script_family(english:family["english"]);
  58.  
  59.  script_dependencies("ssh_get_info.nasl");
  60.  
  61.  script_require_keys("Host/RedHat/rpm-list");
  62.  exit(0);
  63. }
  64.  
  65. include("rpm.inc");
  66. if ( rpm_check( reference:"openssh-3.1p1-6", release:"RHEL2.1") )
  67. {
  68.  security_hole(0);
  69.  exit(0);
  70. }
  71. if ( rpm_check( reference:"openssh-askpass-3.1p1-6", release:"RHEL2.1") )
  72. {
  73.  security_hole(0);
  74.  exit(0);
  75. }
  76. if ( rpm_check( reference:"openssh-askpass-gnome-3.1p1-6", release:"RHEL2.1") )
  77. {
  78.  security_hole(0);
  79.  exit(0);
  80. }
  81. if ( rpm_check( reference:"openssh-clients-3.1p1-6", release:"RHEL2.1") )
  82. {
  83.  security_hole(0);
  84.  exit(0);
  85. }
  86. if ( rpm_check( reference:"openssh-server-3.1p1-6", release:"RHEL2.1") )
  87. {
  88.  security_hole(0);
  89.  exit(0);
  90. }
  91.  
  92. if ( rpm_exists(rpm:"openssh-", release:"RHEL2.1") )
  93. {
  94.  set_kb_item(name:"CVE-2002-0640", value:TRUE);
  95. }
  96.  
  97. set_kb_item(name:"RHSA-2002-131", value:TRUE);
  98.